@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Roboto:wght@400;500;700&display=swap");


:root {
    --h1: clamp(2.8125rem, 4vw + 1rem, 4.209rem);
    --h2: clamp(2.0625rem, 3vw + 1rem, 3.1575rem);
    --h3: clamp(1.875rem, 2.7vw + 1rem, 2.369rem);
    --h4: 1.777rem;
    --h5: 1.333rem;
    --h6: 1rem;
    --heading-font: 'Maven Pro', sans-serif;
    --body-font: "Maven Pro", sans-serif;
    --heading: 232 33% 31%;
    --body: 223 22% 41%;
    --border: 0 0% 90%;
    --base-h: 221;
    --base-s: 75%;
    --base-l: 60%;

    --base: var(--base-h) var(--base-s) var(--base-l);
    --base-50: var(--base-h) var(--base-s) calc(var(--base-l) + 25%);
    --base-100: var(--base-h) var(--base-s) calc(var(--base-l) + 20%);
    --base-200: var(--base-h) var(--base-s) calc(var(--base-l) + 15%);
    --base-300: var(--base-h) var(--base-s) calc(var(--base-l) + 10%);
    --base-400: var(--base-h) var(--base-s) calc(var(--base-l) + 5%);
    --base-600: var(--base-h) var(--base-s) calc(var(--base-l) - 5%);
    --base-700: var(--base-h) var(--base-s) calc(var(--base-l) - 10%);
    --base-800: var(--base-h) var(--base-s) calc(var(--base-l) - 15%);
    --base-900: var(--base-h) var(--base-s) calc(var(--base-l) - 20%);
    --gradient-base: linear-gradient(270deg, hsl(var(--base-400)) 0%, hsl(var(--base-600)) 100%);
    --link-color-h: 216;
    --link-color-s: 98%;
    --link-color-l: 52%;
    --link-color: var(--link-color-h) var(--link-color-s) var(--link-color-l);
    --link-color-hover: var(--link-color-h) var(--link-color-s) 38%;
    --accent-h: 260;
    --accent-s: 92%;
    --accent-l: 10%;
    --accent-50: var(--accent-h) var(--accent-s) calc(var(--accent-l) + 25%);
    --accent-100: var(--accent-h) var(--accent-s) calc(var(--accent-l) + 20%);
    --accent-200: var(--accent-h) var(--accent-s) calc(var(--accent-l) + 15%);
    --accent-300: var(--accent-h) var(--accent-s) calc(var(--accent-l) + 10%);
    --accent-400: var(--accent-h) var(--accent-s) calc(var(--accent-l) + 5%);
    --accent: var(--accent-h) var(--accent-s) var(--accent-l);
    --accent-600: var(--accent-h) var(--accent-s) calc(var(--accent-l) - 5%);
    --accent-700: var(--accent-h) var(--accent-s) calc(var(--accent-l) - 10%);
    --accent-800: var(--accent-h) var(--accent-s) calc(var(--accent-l) - 15%);
    --accent-900: var(--accent-h) var(--accent-s) calc(var(--accent-l) - 20%);
    --primary: 245 82% 67%;
    --secondary: 224 40% 27%;
    --success: 147 67% 47%;
    --danger: 360 78% 62%;
    --warning: 29 100% 63%;
    --info: 200 90% 53%;
    --dark: 206 70% 11%;
    --white: 0 0% 100%;
    --light-h: 228;
    --light-s: 33%;
    --light-l: 97%;
    --light-50: var(--light-h) var(--light-s) calc(var(--light-l) + 33%);
    --light-100: var(--light-h) var(--light-s) calc(var(--light-l) + 20%);
    --light-200: var(--light-h) var(--light-s) calc(var(--light-l) + 15%);
    --light-300: var(--light-h) var(--light-s) calc(var(--light-l) + 10%);
    --light-400: var(--light-h) var(--light-s) calc(var(--light-l) + 2%);
    --light: var(--light-h) var(--light-s) var(--light-l);
    --light-600: var(--light-h) var(--light-s) calc(var(--light-l) - 2%);
    --light-700: var(--light-h) var(--light-s) calc(var(--light-l) - 10%);
    --light-800: var(--light-h) var(--light-s) calc(var(--light-l) - 15%);
    --light-900: var(--light-h) var(--light-s) calc(var(--light-l) - 20%);
}


html {
    font-size: 16px;
}

body {
    background-color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #4e4e4e;
}

p {
    margin-bottom: 1.25rem;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 1.5rem 0 1rem;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    line-height: 1.15;
    color: #212121;
}

h1 {
    margin-top: 0;
    font-size: var(--h1);
}

h2 {
    font-size: var(--h2);
}

h3 {
    font-size: var(--h3);
}

h4 {
    font-size: var(--h4);
}

h5 {
    font-size: var(--h5);
}

h6 {
    font-size: var(--h6);
}

small,
.sm-text {
    font-size: 14px;
}

.base--text {
    color: hsl(var(--base));
}

.lg-text {
    font-size: 18px;
}

.xl-text {
    font-size: 20px;
}

.xxl-text {
    font-size: 24px;
}

.fw-regular {
    font-weight: 400;
}

.fw-md {
    font-weight: 500;
}

button:focus {
    outline: none !important;
}

.btn:focus,
.btn.focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

input:focus {
    outline: none;
}

.form-control {
    border-color: rgba(0, 0, 0, 0.1);
    max-height: 50px;
}

textarea {
    resize: none;
}

/*---------------------------------------
    0.2 Modules Style
-----------------------------------------*/
/*---------------------------------------
    2.1 Hero
-----------------------------------------*/
.hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 80vh;
    min-height: 568px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.hero::after {
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, 60%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

.hero__img-anime {
    display: none;
}

@media screen and (min-width: 1920px) {
    .hero__img-anime {
        display: block;
        width: 250px;
        height: 250px;
        -o-object-fit: contain;
        object-fit: contain;
        position: absolute;
        left: 50%;
        bottom: -80px;
        -webkit-animation: goTop 10s ease infinite;
        animation: goTop 10s ease infinite;
    }
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 60px;
    margin-top: auto;
    margin-bottom: auto;
}

@media screen and (min-width: 400px) {
    .hero__content {
        padding-top: 115px;
    }
}

.hero-alt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 568px;
    height: calc(100vh - 90px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

@media screen and (min-width: 768px) {
    .hero-alt {
        height: calc(100vh - 153px);
    }
}

@media screen and (min-width: 992px) {
    .hero-alt {
        height: calc(100vh - 230px);
    }
}

.hero-alt::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(34, 39, 54, 0.7);
    z-index: -1;
}

/*---------------------------------------
    2.2 Header
-----------------------------------------*/

.header__top {
    padding: 13px 45px;
    position: relative;
    background: #fafafa;
}

@media (max-width: 991px) {
    .header {
        top: 0;
    }
}

@media screen and (min-width: 992px) {
    .header__top {
        padding: 12px 25px;
    }
}

@media screen and (min-width: 1200px) {
    .header__top {
        padding: 12px 45px;
    }
}

/*---------------------------------------
    2.3 Logo
-----------------------------------------*/
.logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 185px;
    margin-right: 70px;
}

.logo__is {
    -o-object-fit: contain;
    object-fit: contain;
}

/*---------------------------------------
    2.4 List
-----------------------------------------*/
.list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.list__item {
    position: relative;
}

.list--row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.list--row__item {
    margin-top: 2px;
    margin-bottom: 2px;
    margin-right: 1rem;
}

.list--row__item:last-child {
    margin-right: 0;
}

.list--row__item-sm {
    margin-top: 2px;
    margin-bottom: 2px;
    margin-right: 0.5rem;
}

.list--row__item-sm:last-child {
    margin-right: 0;
}

.list--column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.list--column__item {
    margin-bottom: 1rem;
}

.list--column__item:last-child {
    margin-bottom: 0;
}

.list--column__item-xl {
    margin-bottom: 2.5rem;
}

@media (max-width: 991px) {
    .list--column__item-xl {
        margin-bottom: 1.5rem;
    }
}

.list--column__item-xl:last-child {
    margin-bottom: 0;
}

.list--column__item-xl i {
    font-size: 35px;
    color: #4e4e4e;
}

.list--column__item-sm {
    margin-bottom: 0.5rem;
    padding-left: 20px;
}

.list--column__item-sm:last-child {
    margin-bottom: 0;
}

.list--primary .list__item::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: hsl(var(--base));
    position: absolute;
    top: 6px;
    left: 0;
}

/*---------------------------------------
    2.5 Nav
-----------------------------------------*/
.nav-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.nav-container a.btn {
    padding-top: 26px;
    padding-bottom: 25px;
    border-radius: 0 !important;
}

.nav-container .nav--toggle {
    padding: 0 !important;
    background: transparent;
    font-size: 30px;
    color: hsl(var(--base));
}

.nav-container .nav--toggle:hover,
.nav-container .nav--toggle:focus {
    background: transparent;
    box-shadow: none;
}

@media screen and (min-width: 992px) {
    .nav-container {
        background: #fff;
        padding-left: 20px;
    }
}

@media screen and (max-width: 991px) {
    .nav-container {
        justify-content: space-between;
        padding: 15px 0;
    }

    .nav-container a.btn {
        border-radius: 0 0 5px 5px !important;
        padding: 0.5rem 1rem !important;
    }
}



.navs {
    width: 100%;
    position: absolute;
    top: calc(100% + 20px);
    right: 0;
    border-radius: 5px;
    background: #fff;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    visibility: hidden;
    opacity: 0;
    z-index: -9999;
}

@media screen and (min-width: 992px) {
    .navs {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        min-width: auto;
        position: relative;
        top: auto;
        right: auto;
        visibility: visible;
        opacity: 1;
        z-index: 9998;
        background: transparent;
    }

    .navs::after {
        display: none;
    }
}

.navs::after {
    content: "";
    border-top: 10px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    position: absolute;
    top: -20px;
    right: 10px;
}

.navs--toggle {
    padding: 3px 5px;
    border-radius: 2px;
    border: 1px solid #fff;
    font-size: 24px;
    color: #fff;
    line-height: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.navs--toggle:hover {
    background: #fff;
    color: #222736;
}

/*---------------------------------------
    2.6 Primary Menu
-----------------------------------------*/
.primary-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media screen and (min-width: 992px) {
    .primary-menu {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.primary-menu--dark {
    background: #222736;
}

@media screen and (min-width: 992px) {
    .primary-menu--dark .primary-menu__link {
        color: #fff;
    }
}

.primary-menu__list {
    position: relative;
}

@media screen and (min-width: 992px) {
    .primary-menu__list {
        margin-right: 2rem;
    }

    .primary-menu__list:last-child {
        margin-right: 0;
    }
}

@media screen and (min-width: 1200px) {
    .primary-menu__list {
        margin-right: 2rem;
    }
}

@media screen and (min-width: 992px) {
    .primary-menu__list.has-sub:hover .primary-menu__link {
        color: hsl(var(--base));
    }
}

@media screen and (min-width: 992px) {
    .primary-menu__list.has-sub:hover .primary-menu__link::after {
        content: "";
    }
}

@media screen and (min-width: 992px) {
    .primary-menu__list.has-sub:hover .primary-menu__sub {
        top: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        z-index: 9999 !important;
    }
}

.primary-menu__list.has-sub .primary-menu__link::after {
    content: "";
    font-family: boxicons !important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    right: 15px;
    font-size: 22px;
}

@media screen and (min-width: 992px) {
    .primary-menu__list.has-sub .primary-menu__link::after {
        right: -18px;
        top: 25px;
        font-size: 18px;
    }
}

.primary-menu__link {
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-left: 15px;
    margin-right: 15px;
    border-bottom: 1px solid rgba(34, 39, 54, 0.1);
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #222736;
}

@media screen and (min-width: 992px) {
    .primary-menu__link {
        color: #212121;
        margin-left: 0;
        margin-right: 0;
        font-weight: 700;
        border-bottom: none;
        padding-top: 23px;
        padding-bottom: 30px;
    }
}

.primary-menu__link:hover {
    color: hsl(var(--base));
    text-decoration: none;
}

.primary-menu--alt {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

@media screen and (min-width: 992px) {
    .primary-menu--alt {
        padding-top: 0;
        padding-bottom: 0;
    }
}

.primary-menu--alt .primary-menu__list {
    margin-bottom: 0.5rem;
}

@media screen and (min-width: 992px) {
    .primary-menu--alt .primary-menu__list {
        margin-bottom: 0;
    }
}

.primary-menu--alt .primary-menu__list:last-child {
    margin-bottom: 0;
}

.primary-menu__sub {
    list-style: none;
    padding: 0;
    margin-left: 15px;
    margin-right: 15px;
    z-index: -9999;
    visibility: hidden;
    opacity: 0;
    height: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

@media screen and (min-width: 992px) {
    .primary-menu__sub {
        min-width: 200px;
        height: auto;
        padding: 15px;
        position: absolute;
        left: 50%;
        top: calc(100% + 20px);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        margin-left: 0;
        margin-right: 0;
        background: #fff !important;
        border-radius: 5px;
        -webkit-box-shadow: 0 5px 15px rgba(34, 39, 54, 0.4);
        box-shadow: 0 5px 15px rgba(34, 39, 54, 0.4);
    }

    .primary-menu__sub::after {
        content: "";
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid transparent;
        border-bottom: 10px solid #fff;
        position: absolute;
        top: -20px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.primary-menu__sub-list {
    border-bottom: 1px solid rgba(51, 189, 255, 0.9);
}

@media screen and (min-width: 992px) {
    .primary-menu__sub-list {
        border-bottom: 1px solid #d8d7d7;
    }

    .primary-menu__sub-list:hover {
        border-bottom: 1px solid transparent;
    }
}

.primary-menu__sub-list:first-child .primary-menu__sub-link {
    border-radius: 3px 3px 0 0;
}

.primary-menu__sub-list:last-child {
    border-bottom: none;
}

.primary-menu__sub-list:last-child .primary-menu__sub-link {
    border-radius: 0 0 3px 3px;
}

.primary-menu__sub-link {
    display: block;
    padding: 8px 15px;
    background: hsl(var(--base));
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
}

@media screen and (min-width: 992px) {
    .primary-menu__sub-link {
        background: #fff;
        color: #212121;
        border-radius: 3px !important;
        text-align: center;
    }
}

.primary-menu__sub-link:hover {
    color: #fff;
}

@media screen and (min-width: 992px) {
    .primary-menu__sub-link:hover {
        color: #fff;
        background: hsl(var(--base));
    }
}

/*---------------------------------------
    2.7 Nav Toggler
-----------------------------------------*/
.nav-toggler .navs {
    visibility: visible;
    opacity: 1;
    z-index: 9997;
    top: calc(100% + 10px);
}

@media screen and (min-width: 992px) {
    .nav-toggler .navs {
        top: auto;
    }
}

.nav-toggler .navs--toggle {
    background: #fff;
    color: #4e4e4e;
}

/*---------------------------------------
    2.8 Nice Select
-----------------------------------------*/
.custom--nice-select .nice-select {
    width: 100%;
    height: 72px;
    line-height: 72px;
    border-radius: 3px;
    background: transparent;
    font-size: 16px;
    border: 0;
}

.custom--nice-select .nice-select::after {
    height: 8px;
    width: 8px;
    margin-top: -6px;
    border-bottom: 2px solid hsl(var(--base));
    border-right: 2px solid hsl(var(--base));
}

.custom--nice-select .nice-select .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: hsl(var(--base));
    right: 0;
    border-radius: 0 0 5px 5px;
    -webkit-box-shadow: 0 10px 15px rgba(34, 39, 54, 0.2);
    box-shadow: 0 10px 15px rgba(34, 39, 54, 0.2);
    max-height: 285px;
    overflow-y: auto;
}

.custom--nice-select .nice-select .list .option {
    color: #fff;
}

.custom--nice-select .nice-select .list .option:hover {
    color: #fff;
    background: #0fb1ff !important;
}

.custom--nice-select .nice-select .list .selected {
    background: #0fb1ff !important;
}

.custom--nice-select .nice-select:active,
.custom--nice-select .nice-select.open,
.custom--nice-select .nice-select:focus {
    border-color: #d8d7d7;
}

.custom--nice-select--outline .nice-select {
    border: 1px solid #fff;
}

.custom--nice-select--light .nice-select::after {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
}

.custom--nice-select--light .current {
    color: rgba(255, 255, 255, 0.7);
}

/*---------------------------------------
    2.9 Form Control
-----------------------------------------*/
.form-control-custom {
    height: 50px;
    line-height: 48px;
    border-radius: 3px;
    font-size: 16px;
}

.form-control-custom::-webkit-input-placeholder {
    text-transform: capitalize;
}

.form-control-custom::-moz-placeholder {
    text-transform: capitalize;
}

.form-control-custom:-ms-input-placeholder {
    text-transform: capitalize;
}

.form-control-custom::-ms-input-placeholder {
    text-transform: capitalize;
}

.form-control-custom::placeholder {
    text-transform: capitalize;
}

.form-control-custom:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control-custom--outline {
    background: transparent;
}

.form-control-custom--outline:focus {
    background: transparent;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control-custom--outline-light {
    border-color: #fff;
    color: #fff;
}

.form-control-custom--outline-light::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control-custom--outline-light::-moz-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control-custom--outline-light:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control-custom--outline-light::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control-custom--outline-light::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control-custom--outline-light:focus {
    border-color: #fff;
    color: #fff;
}

.form-control-custom--outline-dark {
    border-color: #d8d7d7;
    color: #4e4e4e;
}

.form-control-custom--outline-dark::-webkit-input-placeholder {
    color: rgba(78, 78, 78, 0.7);
}

.form-control-custom--outline-dark::-moz-placeholder {
    color: rgba(78, 78, 78, 0.7);
}

.form-control-custom--outline-dark:-ms-input-placeholder {
    color: rgba(78, 78, 78, 0.7);
}

.form-control-custom--outline-dark::-ms-input-placeholder {
    color: rgba(78, 78, 78, 0.7);
}

.form-control-custom--outline-dark::placeholder {
    color: rgba(78, 78, 78, 0.7);
}

.form-control-custom--outline-dark:focus {
    border-color: #d8d7d7;
    color: #4e4e4e;
}

.form-control-custom--outline-thin {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.form-control-custom--outline-thin::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control-custom--outline-thin::-moz-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control-custom--outline-thin:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control-custom--outline-thin::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control-custom--outline-thin::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control-custom--outline-thin:focus {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/*---------------------------------------
    2.10 Primary Submenu Toggler
-----------------------------------------*/
.primary-submenu-toggler {
    position: relative;
}

.primary-submenu-toggler .primary-menu__list.has-sub.active {
    padding-bottom: 15px;
    background: rgba(51, 189, 255, 0.2);
}

@media screen and (min-width: 992px) {
    .primary-submenu-toggler .primary-menu__list.has-sub.active {
        padding-bottom: 0;
        background: transparent;
    }
}

.primary-submenu-toggler .primary-menu__list.has-sub.active .primary-menu__link {
    color: hsl(var(--base));
}

@media screen and (min-width: 992px) {
    .primary-submenu-toggler .primary-menu__list.has-sub.active .primary-menu__link {
        padding-bottom: 0;
        background: transparent;
    }
}



.primary-submenu-toggler .primary-menu__list.has-sub.active .primary-menu__sub {
    visibility: visible;
    opacity: 1;
    height: auto;
    z-index: 9999;
}

@media screen and (min-width: 992px) {
    .primary-submenu-toggler .primary-menu__list.has-sub.active .primary-menu__sub {
        z-index: -9999;
        visibility: hidden;
        opacity: 0;
    }
}

/* ===================== Preloader Css Start ========================== */
@-webkit-keyframes preloader-inside-white {
    0% {
        -webkit-transform: scale(0, 0);
        -ms-transform: scale(0, 0);
        transform: scale(0, 0);
    }

    100% {
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@-moz-keyframes preloader-inside-white {
    0% {
        -webkit-transform: scale(0, 0);
        -ms-transform: scale(0, 0);
        transform: scale(0, 0);
    }

    100% {
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@-ms-keyframes preloader-inside-white {
    0% {
        -webkit-transform: scale(0, 0);
        -ms-transform: scale(0, 0);
        transform: scale(0, 0);
    }

    100% {
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes preloader-inside-white {
    0% {
        -webkit-transform: scale(0, 0);
        -ms-transform: scale(0, 0);
        transform: scale(0, 0);
    }

    100% {
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@-webkit-keyframes preloader-inside-red {
    0% {
        -webkit-transform: scale(0, 0);
        -ms-transform: scale(0, 0);
        transform: scale(0, 0);
    }

    30% {
        -webkit-transform: scale(0, 0);
        -ms-transform: scale(0, 0);
        transform: scale(0, 0);
    }

    100% {
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@-moz-keyframes preloader-inside-red {
    0% {
        -webkit-transform: scale(0, 0);
        -ms-transform: scale(0, 0);
        transform: scale(0, 0);
    }

    30% {
        -webkit-transform: scale(0, 0);
        -ms-transform: scale(0, 0);
        transform: scale(0, 0);
    }

    100% {
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@-ms-keyframes preloader-inside-red {
    0% {
        -webkit-transform: scale(0, 0);
        -ms-transform: scale(0, 0);
        transform: scale(0, 0);
    }

    30% {
        -webkit-transform: scale(0, 0);
        -ms-transform: scale(0, 0);
        transform: scale(0, 0);
    }

    100% {
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes preloader-inside-red {
    0% {
        -webkit-transform: scale(0, 0);
        -ms-transform: scale(0, 0);
        transform: scale(0, 0);
    }

    30% {
        -webkit-transform: scale(0, 0);
        -ms-transform: scale(0, 0);
        transform: scale(0, 0);
    }

    100% {
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

.preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 9990;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader .animated-preloader {
    display: inline-block;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: hsl(var(--base));
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transform: translate(-50%, -50%);
}

.preloader .animated-preloader::after {
    content: "";
    display: inline-block;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: white;
    -webkit-animation: preloader-inside-white 1s ease-in-out infinite;
    -ms-animation: preloader-inside-white 1s ease-in-out infinite;
    animation: preloader-inside-white 1s ease-in-out infinite;
}

.preloader .animated-preloader::before {
    content: "";
    display: inline-block;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: hsl(var(--base));
    -webkit-animation: preloader-inside-red 1s ease-in-out infinite;
    -ms-animation: preloader-inside-red 1s ease-in-out infinite;
    animation: preloader-inside-red 1s ease-in-out infinite;
}

/* ===================== Preloader Css End ========================== */
/*---------------------------------------
    2.12 Back To Top
-----------------------------------------*/
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 15px;
    width: 40px;
    height: 40px;
    background-color: hsl(var(--base));
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    z-index: 99;
    font-size: 16px;
    cursor: pointer;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    display: none;
}

/*---------------------------------------
    2.13 Button Style
-----------------------------------------*/
.btn {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.btn:hover {
    -webkit-box-shadow: 0 8px 10px rgba(34, 39, 54, 0.3);
    box-shadow: 0 8px 10px rgba(34, 39, 54, 0.3);
}

.btn--base {
    background: hsl(var(--base));
    color: #fff;
}

.btn--base:hover {
    color: #fff;
    background: hsl(var(--base) / 0.9) !important;
}

.btn--secondary {
    background: var(--secondary);
    color: #fff;
}

.btn--secondary:hover {
    color: #fff;
    background: #a5adb6;
}

.btn--success {
    background: #1BC5BD;
    color: #fff;
}

.btn--success:hover {
    color: #fff;
    background: #19b8b0;
}

.btn--danger {
    background: #f75b60;
    color: #fff;
}

.btn--danger:hover {
    color: #fff;
    background: #f64c52;
}

.btn--warning {
    background: #ff9f43;
    color: #fff;
}

.btn--warning:hover {
    color: #fff;
    background: #ff9734;
}

.btn--info {
    background: #09c2de;
    color: #fff;
}

.btn--info:hover {
    color: #fff;
    background: #08b5cf;
}

.btn--dark {
    background: #222736;
    color: #fff;
}

.btn--dark:hover {
    color: #fff;
    background: #1c202d;
}

.btn--light {
    background: #fff;
    color: hsl(var(--base));
}

.btn--light:hover {
    color: #fff;
    background: hsl(var(--base));
}

.btn--sqr {
    line-height: 1;
    padding: 0.75rem;
    font-size: 20px;
}

.btn--md {
    padding: 0.5rem 1rem;
}

.btn--lg {
    padding: 0.625rem 1.25rem;
}

.btn--xl {
    padding: 0.75rem 1.5rem;
}

.btn--xxl {
    padding: 1rem 2rem;
}

.btn--outline {
    border: 1px solid #d8d7d7;
    background: transparent;
}

.btn--outline:hover {
    color: #fff;
    background: hsl(var(--base));
    border-color: hsl(var(--base));
}

.btn--outline.active {
    color: #fff;
    background: hsl(var(--base));
    border-color: hsl(var(--base));
}

/*---------------------------------------
    2.14 Info List
-----------------------------------------*/
.vf-info-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.vf-info-list__item {
    padding: 13px 45px;
    position: relative;
}

.vf-info-list__item:first-of-type {
    padding-left: 0;
}

.vf-info-list__item i {
    font-size: 50px;

}

@media screen and (min-width: 992px) {
    .vf-info-list__item {
        padding: 12px 25px;
    }
}

@media screen and (min-width: 1200px) {
    .vf-info-list__item {
        padding: 12px 45px;
    }
}

.vf-info-list__item::after {
    content: "";
    width: 1px;
    height: 20px;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.vf-info-list__item:last-child::after {
    display: none;
}

.vf-info-list__text {
    letter-spacing: 0.1em;
    font-weight: 400;
    color: #fff;
}

a.vf-info-list__text {
    text-decoration: none;
}

a.vf-info-list__text:hover {
    color: #f7f7f7;
}

.vf-info-list--alt .vf-info-list__item::after {
    background: hsl(var(--base));
}

/*---------------------------------------
    2.15 Section 
-----------------------------------------*/
.section {
    padding-top: clamp(60px, 8vw, 120px);
    padding-bottom: clamp(60px, 8vw, 120px);
}

.section--sm {
    padding-top: clamp(30px, 4vw, 60px);
    padding-bottom: clamp(30px, 4vw, 60px);
}

.section--top {
    padding-top: clamp(60px, 8vw, 120px);
}

.section--bottom {
    padding-bottom: clamp(60px, 8vw, 120px);
}

.section__head {
    padding-bottom: clamp(30px, 4vw, 60px);
}

/*---------------------------------------
    2.16 Client Slider
-----------------------------------------*/
.client-slider {
    position: relative;
}

.client-slider__item {
    padding-left: 15px;
    padding-right: 15px;
}

.client-slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*---------------------------------------
    2.17 Custom Icon
-----------------------------------------*/
.vf-custom-icon {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.vf-custom-icon::after {
    content: "";
    width: 60%;
    height: 100%;
    background: hsl(var(--base));
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}



/*---------------------------------------
    2.19 Social Icon
-----------------------------------------*/
.social-icon,
.social-icon--primary,
.social-icon--alt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    border: 1px solid #A2A2A3;
    font-size: 24px;
    line-height: 1;
    color: #A2A2A3;
    background: rgba(255, 255, 255, 0.1);
}

.social-icon:hover,
.social-icon--primary:hover,
.social-icon--alt:hover {
    color: hsl(var(--base));
    background: #fff;
    border-color: #fff;
}

.social-icon--alt {
    border: 1px solid #333535;
    background: #333535;
    color: #fff;
}

.social-icon--alt:hover {
    color: #fff;
    background: hsl(var(--base));
    border-color: hsl(var(--base));
}

.social-icon--primary {
    color: #4e4e4e;
}

.social-icon--primary:hover {
    color: #fff;
    background: hsl(var(--base));
    border-color: hsl(var(--base));
}


/*---------------------------------------
    2.22 Accordion
-----------------------------------------*/
.vf-accordion__header {
    margin-top: 0;
}

.vf-accordion--secondary .vf-accordion__btn {
    background: #adb5bd;
}

.vf-accordion__item {
    border-radius: 0 !important;
    margin-bottom: 15px;
    background: transparent;
    color: #4e4e4e;
    border: 0;
}

.vf-accordion__item:last-child {
    margin-bottom: 0;
}

.vf-accordion__btn {
    padding: 10px 15px;
    border-radius: 0 !important;
    border: 1px solid #d8d7d7;
    color: #212121;
    font-size: 20px;
    font-weight: 500;
}

.vf-accordion__btn:focus {
    border-color: #d8d7d7;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.vf-accordion__btn[aria-expanded=true]::after {
    content: "−";
}

.vf-accordion__btn[aria-expanded=false]::after {
    content: "+";
}

.vf-accordion__btn::after {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 24px;
    line-height: 1;
    color: #fff;
    background: hsl(var(--base));
    text-align: center;
    background-image: initial !important;
    -webkit-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
}

.vf-accordion__btn:not(.collapsed) {
    color: #212121;
    background: #fff;
}

.accordion-button:not(.collapsed) {
    background-image: initial !important;
    -webkit-box-shadow: inset 0 0 0 transparent !important;
    box-shadow: inset 0 0 0 transparent !important;
}

/*---------------------------------------
    2.23 Feedback Slider
-----------------------------------------*/
@media screen and (min-width: 768px) {
    .feedback-slider__item {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.feedback-slider-for__img-is {
    max-width: 100%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (min-width: 768px) {
    .feedback-slider-for__img-is {
        width: 324px;
        height: 324px;
    }
}

@media screen and (min-width: 992px) {
    .feedback-slider-for__img-is {
        width: 440px;
        height: 440px;
    }
}

.feedback-slider-nav__quote {
    font-size: 80px;
    line-height: 1;
    display: inline-block;
    color: hsl(var(--base));
}

.feedback-slider-nav__text {
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
}

.feedback-slider-nav__rating {
    display: inline-block;
}

.feedback-slider-nav__btn {
    width: 45px;
    height: 45px;
    line-height: 45px;
    border: none;
    position: absolute;
    top: calc(100% + 30px);
    background: hsl(var(--base));
    font-size: 24px;
    color: #fff;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}

.feedback-slider-nav__btn:hover {
    background: #fff;
    color: hsl(var(--base));
    -webkit-box-shadow: 0 10px 15px rgba(34, 39, 54, 0.4);
    box-shadow: 0 10px 15px rgba(34, 39, 54, 0.4);
}

.feedback-slider-nav__btn-prev {
    left: 50%;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

@media screen and (min-width: 768px) {
    .feedback-slider-nav__btn-prev {
        left: 0;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.feedback-slider-nav__btn-next {
    right: 50%;
    -webkit-transform: translateX(calc(100% + 10px));
    transform: translateX(calc(100% + 10px));
}

@media screen and (min-width: 768px) {
    .feedback-slider-nav__btn-next {
        right: 100%;
        -webkit-transform: translateX(calc(100% + 60px));
        transform: translateX(calc(100% + 60px));
    }
}

/*---------------------------------------
    2.25 Odometer
-----------------------------------------*/
.odometer--plus {
    position: relative;
}

.odometer--plus::after {
    content: "";
    font-family: boxicons !important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 50px;
    color: #fff;
}

.odometer--plus-primary::after {
    color: hsl(var(--base));
}

.odometer--custom .odometer {
    font-family: "DM Serif Display", serif !important;
}

@media screen and (min-width: 1920px) {
    .odometer--custom .odometer {
        font-size: 80px;
    }
}

/*---------------------------------------
    2.26 Counter List
-----------------------------------------*/
.counter-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (min-width: 768px) {
    .counter-list {
        -ms-grid-columns: 1fr 0 1fr;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
}

@media screen and (min-width: 768px) {
    .counter-list--dark .counter-list__item {
        padding: 30px;
    }

    .counter-list--dark .counter-list__item:first-child {
        border-right: 1px solid rgba(34, 39, 54, 0.3);
        border-bottom: 1px solid rgba(34, 39, 54, 0.3);
    }

    .counter-list--dark .counter-list__item:last-child {
        border-top: 1px solid rgba(34, 39, 54, 0.3);
        border-left: 1px solid rgba(34, 39, 54, 0.3);
    }
}

/*---------------------------------------
    2.27 Query Selector
-----------------------------------------*/
.query {
    padding: 30px 15px;
    border-radius: 5px;
    background: hsl(var(--white) / .25);

    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2.5px);
    -webkit-backdrop-filter: blur(2.5px);
}

@media screen and (min-width: 992px) {
    .query {
        padding: 30px;
    }
}

@media screen and (min-width: 1366px) {
    .query {
        padding: 50px;
    }
}

/*---------------------------------------
    2.28 Blog Post
-----------------------------------------*/
.blog-post {
    position: relative;
}

.blog-post__img {
    display: block;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.blog-post__img:hover .blog-post__img-is {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
}

.blog-post__img-is {
    width: 100%;
    max-width: 100%;
    height: 270px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blog-post__body {
    padding: 70px 15px 30px;
    background: #fafafa;
    border-radius: 0 0 10px 10px;
    position: relative;
}

@media screen and (min-width: 1366px) {
    .blog-post__body {
        padding: 60px 30px 30px;
    }
}

.blog-post__date {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    background: hsl(var(--base));
    text-align: center;
    position: absolute;
    top: -40px;
}

.blog-post__title {
    color: #212121;
}

@media screen and (min-width: 1200px) {
    .blog-post__title {
        display: -webkit-box !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        white-space: normal;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: middle;
    }
}

.blog-post__title:hover {
    color: hsl(var(--base));
}

@media screen and (min-width: 1200px) {
    .blog-post__article {
        display: -webkit-box !important;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        white-space: normal;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: middle;
    }
}

.blog-post__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-post__meta-text {
    font-size: 14px;
}

.blog-post__share {
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    color: hsl(var(--base));
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blog-post__share:hover {
    color: #fff;
    -webkit-box-shadow: 0 10px 15px rgba(34, 39, 54, 0.5);
    box-shadow: 0 10px 15px rgba(34, 39, 54, 0.5);
}

.blog-thumb {
    width: 86px;
    height: 45px;
}

.blog-thumb img {
    border-radius: 4px;
}

/*---------------------------------------
    2.29 CTA
-----------------------------------------*/
.cta {
    background-color: #fafafa;
    padding: 42px 30px;
    margin-bottom: clamp(60px, 8vw, 120px);
}

@media screen and (min-width: 992px) {
    .cta {
        -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 89%, 50% 100%, 50% 100%, 0 89%, 0 0);
        clip-path: polygon(50% 0%, 100% 0, 100% 89%, 50% 100%, 50% 100%, 0 89%, 0 0);
        margin-bottom: -125px;
    }
}

@media (max-width: 1399px) {
    .cta .list--row__item:first-of-type {
        max-width: 550px;
    }
}

@media (max-width: 1199px) {
    .cta .list--row__item:first-of-type {
        max-width: 440px;
    }
}

@media (max-width: 991px) {
    .cta .footer-logo {
        max-width: 200px;
    }
}

@media (max-width: 767px) {
    .cta {
        padding: 25px 15px;
    }

    .cta .footer-logo {
        margin: 0 auto;
    }
}


/*---------------------------------------
    2.30 Footer Logo
-----------------------------------------*/
@media screen and (min-width: 992px) {
    .footer-logo {
        position: relative;
        padding-right: 25px;
    }

    .footer-logo::after {
        position: absolute;
        content: '';
        background: rgba(255, 255, 255, 0.7);
        width: 1px;
        height: calc(100% + 70px);
        left: auto;
        right: 0;
        top: -35px;
        z-index: 1;
    }
}

/*---------------------------------------
    2.31 Newsletter
-----------------------------------------*/
.newsletter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #fff;
    border-radius: 2px;
    max-width: 600px;
}

.newsletter--dark {
    border-color: #d8d7d7;
}

.newsletter--dark .newsletter__input {
    color: #212121;
}

.newsletter--dark .newsletter__input:focus {
    color: #4e4e4e;
}

.newsletter--dark .newsletter__input::-webkit-input-placeholder {
    color: #4e4e4e;
}

.newsletter--dark .newsletter__input::-moz-placeholder {
    color: #4e4e4e;
}

.newsletter--dark .newsletter__input:-ms-input-placeholder {
    color: #4e4e4e;
}

.newsletter--dark .newsletter__input::-ms-input-placeholder {
    color: #4e4e4e;
}

.newsletter--dark .newsletter__input::placeholder {
    color: #4e4e4e;
}

.newsletter--dark .newsletter__btn {
    color: hsl(var(--base));
}

.newsletter__input {
    height: 50px;
    line-height: 48px;
    border-radius: 0;
    border: none;
    background: transparent;
    color: #fff;
}

.newsletter__input:focus {
    outline: none;
    color: #000;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
}

.newsletter__input::-webkit-input-placeholder {
    text-transform: capitalize;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter__input::-moz-placeholder {
    text-transform: capitalize;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter__input:-ms-input-placeholder {
    text-transform: capitalize;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter__input::-ms-input-placeholder {
    text-transform: capitalize;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter__input::placeholder {
    text-transform: capitalize;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter__btn {
    padding-left: 10px;
    padding-right: 10px;
    border: none;
    font-size: 20px;
    background: hsl(var(--base));
    color: #fff;
}

/*---------------------------------------
    2.32 Icon
-----------------------------------------*/
.icon {
    position: relative;
    display: inline-block;
}

.icon--circle {
    border-radius: 50%;
    text-align: center;
}

.icon--sqr {
    border-radius: 5px;
    text-align: center;
}

.icon--xs {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
}

.icon--sm {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 22px;
}

.icon--md {
    width: 50px;
    height: 50px;
    line-height: 1;
    font-size: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon--lg {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 30px;
}

.icon--xl {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 35px;
}

.icon--xxl {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 40px;
}

/*---------------------------------------
    2.35 Service Card
-----------------------------------------*/
.service-card {
    padding: 30px;
    border-radius: 10px;
}

@media screen and (min-width: 768px) {
    .service-card {
        padding: 30px 15px;
    }
}

@media screen and (min-width: 992px) {
    .service-card {
        padding: 60px 30px;
    }
}

/*---------------------------------------
    2.36 Blockquote
-----------------------------------------*/
.blockquote__text {
    font-style: italic;
}


/*---------------------------------------
    2.38 Feedback Card
-----------------------------------------*/
.feedback-card {
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
}

@media screen and (min-width: 400px) {
    .feedback-card {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.feedback-card::after {
    content: "";
    font-family: boxicons !important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    font-size: 38px;
    color: rgba(51, 189, 255, 0.2);
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.feedback-card__profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.feedback-card__profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.feedback-card__profile-info {
    padding-left: 15px;
    padding-right: 15px;
}

.feedback-card__profile-name {
    font-size: 18px;
    font-family: "DM Serif Display", serif;
    color: #212121;
}

.feedback-card__comment {
    font-weight: 500;
    font-style: italic;
}


/*---------------------------------------
    2.40 Contact Icon
-----------------------------------------*/
.contact-icon {
    width: 60px;
    height: 60px;
    -o-object-fit: contain;
    object-fit: contain;
}

.contact-icon-box {
    position: relative;
}

.contact-icon-box::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 40px;
    width: 2px;
    background: #fff;
}

.contact-icon-box--primary {
    position: relative;
}

.contact-icon-box--primary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 40px;
    width: 2px;
    background: hsl(var(--base));
}

/*---------------------------------------
    2.41 Profile Pic
-----------------------------------------*/
.profile-pic {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.profile-pic__img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
}

.profile-pic__img--sm {
    width: 35px;
    height: 35px;
}

.profile-pic__img--md {
    width: 45px;
    height: 45px;
}

.profile-pic__img--lg {
    width: 50px;
    height: 50px;
}

.profile-pic__img--xl {
    width: 70px;
    height: 70px;
}

.profile-pic__img--xxl {
    width: 130px;
    height: 130px;
}

.profile-pic__img-is {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/*---------------------------------------
    2.42 Blog Card
-----------------------------------------*/
.blog-card {
    background: #fafafa;
    border-radius: 5px;
    overflow: hidden;
}

.blog-card__img {
    position: relative;
}

.blog-card__img::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#000000), to(transparent));
    background-image: linear-gradient(0deg, #000000 0%, transparent 100%);
}

.blog-card__img-is {
    max-width: 100%;
    width: 100%;
    height: 350px;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-card__overlay {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 30px;
    z-index: 1;
}

@media screen and (min-width: 1200px) {
    .blog-card__overlay {
        left: 30px;
        right: 30px;
    }
}

.blog-card__body {
    padding: 30px 15px;
}

@media screen and (min-width: 1200px) {
    .blog-card__body {
        padding: 30px;
    }
}

.blog-card__footer {
    padding: 30px 15px;
}

@media screen and (min-width: 1200px) {
    .blog-card__footer {
        padding: 30px;
    }
}

.blog-card__hr {
    width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
}

/*---------------------------------------
    2.43 Banner
-----------------------------------------*/
.banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 50vh;
    min-height: 568px;
    position: relative;
    background-image: url(../img/banner-img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

@media screen and (min-width: 992px) {
    .banner {
        -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 89%, 50% 100%, 50% 100%, 0 89%, 0 0);
        clip-path: polygon(50% 0%, 100% 0, 100% 89%, 50% 100%, 50% 100%, 0 89%, 0 0);
    }
}

.banner::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/*---------------------------------------
    2.44 Breadcrumbs
-----------------------------------------*/

.breadcrumb {
    position: relative;
    padding: 195px 0 50px;
}

.breadcrumb::after {
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, .45);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

@media (max-width: 991px) {
    .breadcrumb {
        padding: 90px 0 50px;
    }
}

@media (max-width: 767px) {
    .breadcrumb {
        padding: 80px 0 35px;
    }
}


.breadcrumb__content {
    position: relative;
    z-index: 2;
}

.breadcrumbs__item {
    margin-right: 2rem;
    position: relative;
}

.breadcrumbs__item::after {
    content: "";
    position: absolute;
    top: 4px;
    right: -1rem;
    height: 16px;
    width: 2px;
    background: #fff;
    -webkit-transform: skew(-25deg);
    transform: skew(-25deg);
}

.breadcrumbs__item:last-child {
    margin-right: 0;
}

.breadcrumbs__item:last-child::after {
    display: none;
}

/*---------------------------------------
    2.45 Trainer Profile
-----------------------------------------*/
.trainer-profile {
    padding: 30px 15px;
    background: #fafafa;
    border-radius: 5px;
    position: relative;
}

@media screen and (min-width: 768px) {
    .trainer-profile {
        padding: 30px;
    }
}

@media screen and (min-width: 992px) {
    .trainer-profile {
        padding: 50px 40px;
    }
}

.trainer-profile__img {
    max-width: 100%;
    width: 100%;
    height: 365px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
}

.trainer-profile__timeline {
    position: relative;
}

@media screen and (min-width: 1200px) {
    .trainer-profile__timeline::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        height: 88%;
        width: 1px;
        background: #d8d7d7;
    }
}

.trainer-profile__history {
    padding: 30px 15px;
    border-radius: 5px;
    background: #fafafa;
    position: relative;
}

@media screen and (min-width: 992px) {
    .trainer-profile__history {
        padding: 30px;
    }
}

@media screen and (min-width: 1200px) {
    .trainer-profile__history-left::before {
        content: "";
        position: absolute;
        top: 44px;
        right: -98px;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: hsl(var(--base));
        -webkit-box-shadow: 0 0 0 8px rgba(51, 189, 255, 0.5);
        box-shadow: 0 0 0 8px rgba(51, 189, 255, 0.5);
        z-index: 1;
    }

    .trainer-profile__history-left::after {
        content: "";
        position: absolute;
        top: 50px;
        left: 100%;
        width: 90px;
        height: 1px;
        background: #d8d7d7;
    }
}

@media screen and (min-width: 1366px) {
    .trainer-profile__history-left::before {
        right: -101px;
    }

    .trainer-profile__history-left::after {
        width: 95px;
    }
}

@media screen and (min-width: 1200px) {
    .trainer-profile__history-right::before {
        content: "";
        position: absolute;
        bottom: 44px;
        left: -98px;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: hsl(var(--base));
        -webkit-box-shadow: 0 0 0 8px rgba(51, 189, 255, 0.5);
        box-shadow: 0 0 0 8px rgba(51, 189, 255, 0.5);
        z-index: 1;
    }

    .trainer-profile__history-right::after {
        content: "";
        position: absolute;
        bottom: 50px;
        right: 100%;
        width: 90px;
        height: 1px;
        background: #d8d7d7;
    }
}

@media screen and (min-width: 1366px) {
    .trainer-profile__history-right::before {
        left: -101px;
    }

    .trainer-profile__history-right::after {
        width: 95px;
    }
}

.form--control[type='file'] {
    line-height: 31px;
}

/*---------------------------------------
    2.46 Pagination
-----------------------------------------*/

.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    gap: 10px;
}

.pagination .page-item {
    display: block;
    justify-content: center;
    align-items: center;
}

.pagination .page-item.disabled .page-link {
    background-color: #f7f7f7 !important;
}

.pagination .page-link {
    width: 40px;
    height: 35px;
    border-radius: 3px;
    background-color: #fff !important;
    color: #555 !important;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination .page-item.active .page-link {
    border: none;
    background-color: hsl(var(--base)) !important;
    color: #fff !important;
}

/*---------------------------------------
    2.47 Blog List
-----------------------------------------*/
.blog-list__item {
    margin-bottom: 60px;
}

.blog-list__item:last-child {
    margin-bottom: 0;
}

/*---------------------------------------
    2.48 Widget
-----------------------------------------*/
.widget {
    padding: 30px 15px;
    border-radius: 5px;
}

@media screen and (min-width: 1400px) {
    .widget {
        padding: 22px 30px;
    }
}

.widget-alt__head {
    padding: 15px 30px;
    border-radius: 5px 5px 0 0;
    background: hsl(var(--base));
}

.widget-alt__body {
    background: #fafafa;
    padding: 15px 30px;
}

/*---------------------------------------
    2.49 Widget Category
-----------------------------------------*/
.widget-category__item {
    border-bottom: 1px solid rgb(216 215 215 / 29%);
}

.widget-category__item:last-child {
    border-bottom: none;
}

.widget-category__item:last-child .vh-widget-category__link {
    padding-bottom: 0;
}

.widget-category__link {
    display: inline-block;
    padding-bottom: 1rem;
    color: #4e4e4e;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.widget-category__link:hover {
    color: hsl(var(--base));
}

/*---------------------------------------
    2.50 User
-----------------------------------------*/
.user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.user__img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
}

.user__img--sm {
    width: 35px;
    height: 35px;
}

.user__img--md {
    width: 45px;
    height: 45px;
}

.user__img--lg {
    width: 50px;
    height: 50px;
}

.user__img--xl {
    width: 70px;
    height: 70px;
}

.user__img--xxl {
    width: 130px;
    height: 130px;
}

.user__img-is {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/*---------------------------------------
    2.51 GMap
-----------------------------------------*/
.gmap {
    width: 100%;
}

@media screen and (min-width: 992px) {
    .gmap {
        position: relative;
        margin-bottom: -130px;
    }
}

.gmap iframe {
    width: 100%;
    height: 600px;
}

/*---------------------------------------
    2.52 Auth Form
-----------------------------------------*/
.auth-form {
    position: relative;
}

.auth-form__close {
    position: absolute;
    top: 15px;
    right: 15px;
}

.auth-form__close:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.auth-form__bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
    .auth-form__content {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media screen and (min-width: 1200px) {
    .auth-form__content {
        padding-left: 60px;
        padding-right: 60px;
    }
}

.auth-form__input-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fafafa;
    border-radius: 3px;
}

.auth-form__input {
    display: block;
    width: 100%;
    padding-top: 24px;
    padding-bottom: 24px;
    border: none;
    background: transparent;
}

.auth-form__input:focus {
    background: transparent;
}

.auth-form__input::-webkit-input-placeholder {
    text-transform: capitalize;
}

.auth-form__input::-moz-placeholder {
    text-transform: capitalize;
}

.auth-form__input:-ms-input-placeholder {
    text-transform: capitalize;
}

.auth-form__input::-ms-input-placeholder {
    text-transform: capitalize;
}

.auth-form__input::placeholder {
    text-transform: capitalize;
}

.auth-form__input-icon {
    display: inline-block;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 20px;
}

.auth-form__divider {
    overflow: hidden;
}

.auth-form__divider-text {
    position: relative;
}

.auth-form__divider-text::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    height: 1px;
    width: 50%;
    background: #d8d7d7;
}

.auth-form__divider-text::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -30px;
    height: 1px;
    width: 50%;
    background: #d8d7d7;
}

/*---------------------------------------
    0.3 Theme Style
-----------------------------------------*/
/*---------------------------------------
    3.1 Color
-----------------------------------------*/
.text--primary {
    color: hsl(var(--base));
}

.text--secondary {
    color: #adb5bd;
}

.text--success {
    color: #1BC5BD;
}

.text--danger {
    color: #f75b60;
}

.text--warning {
    color: #ff9f43;
}

.text--info {
    color: #09c2de;
}

.text--dark {
    color: #222736;
}

.t-text-white {
    color: #fff;
}

.t-text {
    color: #4e4e4e;
}

.t-text-heading {
    color: #212121;
}

/*---------------------------------------
    3.2 Background
-----------------------------------------*/
.bg--primary {
    background: #0570e6;
}

.bg--secondary {
    background: var(--secondary);
}

.bg--success {
    background: #1BC5BD;
}

.bg--danger {
    background: #f75b60;
}

.bg--warning {
    background: #ff9f43;
}

.bg--info {
    background: #09c2de;
}

.bg--dark {
    background: #222736;
}

.bg--light {
    background: #fff;
}

.bg--light-1 {
    background: #fafafa;
}



/*---------------------------------------
    3.3 Padding
-----------------------------------------*/
.t-pt-90 {
    padding-top: 90px;
}

.t-pt-95 {
    padding-top: 95px;
}

.t-pt-100 {
    padding-top: 100px;
}

.t-pt-105 {
    padding-top: 105px;
}

.t-pt-110 {
    padding-top: 110px;
}

.t-pt-115 {
    padding-top: 115px;
}

.t-pt-120 {
    padding-top: 120px;
}

.t-pt-200 {
    padding-top: 200px;
}

.t-pb-50 {
    padding-bottom: 50px;
}

.t-pb-100 {
    padding-bottom: 100px;
}

.t-pb-105 {
    padding-bottom: 105px;
}

.t-pb-120 {
    padding-bottom: 120px;
}

.t-pb-180 {
    padding-bottom: 180px;
}

/*---------------------------------------
    3.4 Margin
-----------------------------------------*/
.t-mt-30 {
    margin-top: 30px;
}

.t-mt-40 {
    margin-top: 40px;
}

.t-mt-60 {
    margin-top: 60px;
}

.t-mt-80 {
    margin-top: 80px;
}

.t-mt-90 {
    margin-top: 90px;
}

.t-mb-30 {
    margin-bottom: 30px;
}

.t-mb-40 {
    margin-bottom: 40px;
}

.t-mb-60 {
    margin-bottom: 60px;
}

/*---------------------------------------
    3.5 Utility Classes
-----------------------------------------*/
.t-heading-font {
    font-family: "DM Serif Display", serif;
}

.t-body-font {
    font-family: "Roboto", sans-serif;
}

.t-lh-1 {
    line-height: 1;
}

.t-link {
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.t-link:hover {
    text-decoration: none;
}

.t-link--primary:hover {
    color: hsl(var(--base));
}

.t-link--danger:hover {
    color: #f75b60;
}

.t-link--info:hover {
    color: #09c2de;
}

.t-link--light:hover {
    color: #fff;
    -webkit-box-shadow: 0 5px 10px rgba(34, 39, 54, 0.3);
    box-shadow: 0 5px 10px rgba(34, 39, 54, 0.3);
}

@media screen and (min-width: 992px) {
    .t-short-para {
        max-width: 48ch;
    }
}

.border-bottom--light {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/*---------------------------------------
    3.6 Animation
-----------------------------------------*/
@-webkit-keyframes about-play {
    0% {
        -webkit-box-shadow: 0 0 0 0 hsl(var(--base));
        box-shadow: 0 0 0 0 hsl(var(--base));
    }

    50% {
        -webkit-box-shadow: 0 0 0 10px rgba(51, 189, 255, 0.7);
        box-shadow: 0 0 0 10px rgba(51, 189, 255, 0.7);
    }

    100% {
        -webkit-box-shadow: 0 0 0 20px rgba(51, 189, 255, 0.1);
        box-shadow: 0 0 0 20px rgba(51, 189, 255, 0.1);
    }
}

@keyframes about-play {
    0% {
        -webkit-box-shadow: 0 0 0 0 hsl(var(--base));
        box-shadow: 0 0 0 0 hsl(var(--base));
    }

    50% {
        -webkit-box-shadow: 0 0 0 10px rgba(51, 189, 255, 0.7);
        box-shadow: 0 0 0 10px rgba(51, 189, 255, 0.7);
    }

    100% {
        -webkit-box-shadow: 0 0 0 20px rgba(51, 189, 255, 0.1);
        box-shadow: 0 0 0 20px rgba(51, 189, 255, 0.1);
    }
}

@-webkit-keyframes bttn-video {
    0% {
        -webkit-box-shadow: 0 0 0 0 hsl(var(--base));
        box-shadow: 0 0 0 0 hsl(var(--base));
    }

    50% {
        -webkit-box-shadow: 0 0 0 10px rgba(51, 189, 255, 0.3);
        box-shadow: 0 0 0 10px rgba(51, 189, 255, 0.3);
    }

    100% {
        -webkit-box-shadow: 0 0 0 20px rgba(51, 189, 255, 0.04);
        box-shadow: 0 0 0 20px rgba(51, 189, 255, 0.04);
    }
}

@keyframes bttn-video {
    0% {
        -webkit-box-shadow: 0 0 0 0 hsl(var(--base));
        box-shadow: 0 0 0 0 hsl(var(--base));
    }

    50% {
        -webkit-box-shadow: 0 0 0 10px rgba(51, 189, 255, 0.3);
        box-shadow: 0 0 0 10px rgba(51, 189, 255, 0.3);
    }

    100% {
        -webkit-box-shadow: 0 0 0 20px rgba(51, 189, 255, 0.04);
        box-shadow: 0 0 0 20px rgba(51, 189, 255, 0.04);
    }
}

@-webkit-keyframes circle {
    0% {
        -webkit-transform: rotate(0deg) translate(-60px) rotate(0deg);
        transform: rotate(0deg) translate(-60px) rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg) translate(-60px) rotate(-360deg);
        transform: rotate(360deg) translate(-60px) rotate(-360deg);
    }
}

@keyframes circle {
    0% {
        -webkit-transform: rotate(0deg) translate(-60px) rotate(0deg);
        transform: rotate(0deg) translate(-60px) rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg) translate(-60px) rotate(-360deg);
        transform: rotate(360deg) translate(-60px) rotate(-360deg);
    }
}

@-webkit-keyframes goright {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(80px);
        transform: translateX(80px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes goright {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(80px);
        transform: translateX(80px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes goleft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(-80px);
        transform: translateX(-80px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes goleft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(-80px);
        transform: translateX(-80px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes topRight {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    50% {
        -webkit-transform: translate(80px, -80px);
        transform: translate(80px, -80px);
    }

    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

@keyframes topRight {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    50% {
        -webkit-transform: translate(80px, -80px);
        transform: translate(80px, -80px);
    }

    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

@-webkit-keyframes topLeft {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    50% {
        -webkit-transform: translate(80px, 80px);
        transform: translate(80px, 80px);
    }

    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

@keyframes topLeft {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    50% {
        -webkit-transform: translate(80px, 80px);
        transform: translate(80px, 80px);
    }

    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

@-webkit-keyframes circlerotate {
    0% {
        -webkit-transform: rotate(0deg) translate(-60px);
        transform: rotate(0deg) translate(-60px);
    }

    100% {
        -webkit-transform: rotate(360deg) translate(-60px);
        transform: rotate(360deg) translate(-60px);
    }
}

@keyframes circlerotate {
    0% {
        -webkit-transform: rotate(0deg) translate(-60px);
        transform: rotate(0deg) translate(-60px);
    }

    100% {
        -webkit-transform: rotate(360deg) translate(-60px);
        transform: rotate(360deg) translate(-60px);
    }
}

@-webkit-keyframes rotates {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotates {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes goTop {
    0% {
        -webkit-transform: translateY(0) translateX(-50%);
        transform: translateY(0) translateX(-50%);
    }

    50% {
        -webkit-transform: translateY(-80px) translateX(-50%);
        transform: translateY(-80px) translateX(-50%);
    }

    100% {
        -webkit-transform: translateY(0) translateX(-50%);
        transform: translateY(0) translateX(-50%);
    }
}

@keyframes goTop {
    0% {
        -webkit-transform: translateY(0) translateX(-50%);
        transform: translateY(0) translateX(-50%);
    }

    50% {
        -webkit-transform: translateY(-80px) translateX(-50%);
        transform: translateY(-80px) translateX(-50%);
    }

    100% {
        -webkit-transform: translateY(0) translateX(-50%);
        transform: translateY(0) translateX(-50%);
    }
}

/*---------------------------------------
    0.4 Layouts Style
-----------------------------------------*/
/*---------------------------------------
    4.1 Course Section
-----------------------------------------*/
.course-section {
    background-image: url(../img/course-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    position: relative;
}

.course-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(234, 237, 240, 0.92);
    z-index: -1;
}

/*---------------------------------------
    4.2 Feedback Section
-----------------------------------------*/
.feedback-section {
    position: relative;
}

@media screen and (min-width: 1200px) {
    .feedback-section {
        background: -webkit-gradient(linear, right top, left top, color-stop(62%, transparent), color-stop(50%, hsl(var(--base))));
        background: linear-gradient(to left, transparent 62%, hsl(var(--base)) 50%);
    }
}

/*---------------------------------------
    4.3 CTA Section
-----------------------------------------*/
.cta-section {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.cta-section::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}

/*---------------------------------------
    4.4 Footer 1
-----------------------------------------*/
.footer {
    background: #1D1F1F;
}

.footer-top {
    padding-top: clamp(60px, 8vw, 120px);
    padding-bottom: clamp(60px, 8vw, 120px);
}

@media screen and (min-width: 992px) {
    .footer-top {
        padding-top: clamp(60px, 16vw, 245px);
    }
}

.footer-copyright {
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/*---------------------------------------
    4.5 Service Section
-----------------------------------------*/
.service-section {
    padding-top: clamp(30px, 4vw, 60px);
    padding-bottom: clamp(30px, 4vw, 60px);
}

@media screen and (min-width: 1920px) {
    .service-section {
        padding-top: 0;
        padding-bottom: 0;
        margin-top: -150px;
        position: relative;
        z-index: 3;
    }
}

/*---------------------------------------
    4.6 Contact Section
-----------------------------------------*/
.contact-section {
    background: hsl(var(--base));
}

@media screen and (min-width: 768px) {
    .contact-section {
        background: -webkit-gradient(linear, left top, left bottom, color-stop(35%, transparent), color-stop(35%, hsl(var(--base))));
        background: linear-gradient(to bottom, transparent 35%, hsl(var(--base)) 35%);
    }
}

@media screen and (min-width: 992px) {
    .contact-section {
        background: -webkit-gradient(linear, left top, left bottom, color-stop(37%, transparent), color-stop(37%, hsl(var(--base))));
        background: linear-gradient(to bottom, transparent 37%, hsl(var(--base)) 37%);
    }
}

@media screen and (min-width: 1200px) {
    .contact-section {
        background: -webkit-gradient(linear, left top, left bottom, color-stop(45%, transparent), color-stop(45%, hsl(var(--base))));
        background: linear-gradient(to bottom, transparent 45%, hsl(var(--base)) 45%);
    }
}

@media screen and (min-width: 1366px) {
    .contact-section {
        background: -webkit-gradient(linear, left top, left bottom, color-stop(38%, transparent), color-stop(38%, hsl(var(--base))));
        background: linear-gradient(to bottom, transparent 38%, hsl(var(--base)) 38%);
    }
}

.contact-section__title {
    color: #fff;
}

@media screen and (min-width: 768px) {
    .contact-section__title {
        color: #212121;
        padding-bottom: 50px;
    }
}


.form-control {
    line-height: 2.7 !important;
}

.query textarea.form-control {
    max-height: 180px;
}

@media (max-width: 991px) {
    .query {
        margin-bottom: 50px;
    }
}

.blog-post__meta-icon i {
    font-size: 18px;
    line-height: 1;
    color: hsl(var(--base));
    margin-right: 5px;
    position: relative;
    top: 2px;
}

.top-header {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

@media (max-width: 991px) {
    .top-header {
        display: none;
    }
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-150%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

p.mb-0.text-capitalize.text--primary.xxl-text {
    position: relative;
}


p.mb-0.text-capitalize.text--primary.xxl-text::before {
    position: absolute;
    content: "";
    background: hsl(var(--base));
    width: 100%;
    height: 3px;
    left: 0;
    bottom: -5px;
    border-radius: 3px;
    overflow: hidden;
}

p.mb-0.text-capitalize.text--primary.xxl-text::after {
    position: absolute;
    content: "";
    background: hsl(var(--white));
    width: 10px;
    height: 3px;
    left: 0;
    bottom: -5px;
    border-radius: 0;
    -webkit-animation: bar_dot 3s linear infinite;
    animation: bar_dot 3s linear infinite;
}

@keyframes bar_dot {
    from {
        left: -10px;
    }

    to {
        left: 100%;
    }
}




.counter-list__item {
    position: relative;
    z-index: 2;
}

.counter-list__item .title {
    margin: 0;
}

.counter-section {
    position: relative;
}

.counter-section::after {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.65);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

@media (max-width: 991px) {

    .counter-section .row .col-6:nth-child(1) .counter-list__item,
    .counter-section .row .col-6:nth-child(2) .counter-list__item {
        margin-bottom: 30px;
    }
}

@media (max-width: 425px) {
    .counter-list__item .title {
        font-size: 35px;
    }

    .counter-list__item p {
        font-size: 16px;
    }
}

.hero__content-title {
    font-family: var(--heading-font);
    font-size: 50px;
    font-weight: 700;
    word-spacing: 1px;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .hero__content-title {
        font-size: 40px;
        font-weight: 600;
    }

    .hero {
        height: 70vh;
        min-height: 520px;
    }
}

@media (max-width: 375px) {
    .hero__content {
        padding-top: 135px;
    }

    .hero__content-title {
        font-size: 24px;
    }
}

.top-header .custom--nice-select .nice-select {
    position: relative;
    z-index: 6;
    width: auto;
    background: transparent;
    color: #212121 !important;
    border: 1px solid #f2f2f2;
    height: 35px;
    line-height: 35px;
    padding-left: 10px;
    padding-right: 20px;
}

.top-header .custom--nice-select .nice-select::after {
    height: 6px;
    width: 6px;
    margin-top: -3px;
    right: 5px;
    border-color: #fbfbfb;
}

.top-header .custom--nice-select .nice-select .current {
    color: #fbfbfb;
}

.top-header .custom--nice-select .nice-select .list {
    width: 100%;
    max-height: 150px;
    background: #fff;
    border-radius: 3px;
}

.top-header .custom--nice-select .nice-select .list .option.selected,
.top-header .custom--nice-select .nice-select .list .option:hover {
    color: #FFF !important;
    background: #0fb1ff !important;
}

.top-header .custom--nice-select .nice-select .option {
    padding-left: 5px;
    padding-right: 5px;
    color: #4e4e4e !important;

}

@media (max-width: 991px) {
    .vf-info-list__item {
        padding: 13px 15px 13px 0;
    }

    .list--row__item:last-child {
        margin-left: 0 !important;
    }

    .vf-info-list__item::after {
        display: none;
    }

    .list--row__item:last-child img,
    .vf-info-list__item img {
        width: 15px;
    }

    .list--row__item:last-child p,
    .vf-info-list__item p {
        font-size: 15px;
    }

    .vf-info-list__item .label {
        display: none;
    }
}

/* ============= Header Start Here ======================= */
.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

@media screen and (max-width: 991px) {
    .navbar-brand.logo {
        order: -1;
    }
}

.navbar-brand.logo img {
    max-width: 200px;
    max-height: 60px;
}

@media screen and (max-width: 991px) {
    .navbar-brand.logo img {
        max-width: 150px;
    }
}

.header {
    position: absolute;
    width: 100%;
    top: 76px;
    z-index: 99;
}

.header.fixed-header {
    background-color: #fff;
    box-shadow: 0 3px 30px 2px rgba(0, 0, 0, .1);
    position: fixed;
    transition: 0.3s linear;
    top: 0;
    animation: slide-down 0.8s;
    width: 100%;
    z-index: 5;
}

@media screen and (max-width: 991px) {
    .header {
        top: 0;
        background-color: #fff;
        box-shadow: 0 3px 30px 2px rgba(0, 0, 0, .1);
        padding: 0;
        position: absolute;
        left: 0;
        right: 0;
        z-index: 999;
        max-height: 100vh;
        overflow-y: auto;
    }

    .header::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }

    .header::-webkit-scrollbar-thumb {
        border-radius: 0px;
    }
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-150%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar {
    background: #fff;
    padding: 0 0 0 20px !important;
}

@media (max-width: 576px) {

    .navbar .logo {
        max-width: 140px;
    }
}

@media (max-width: 991px) {
    .navbar {
        padding: 22px 20px !important;
    }

    .navbar-collapse .custom--nice-select .nice-select {
        position: relative;
        z-index: 6;
        width: auto;
        background: transparent;
        color: #212121 !important;
        border: 1px solid #f2f2f2;
        height: 35px;
        line-height: 35px;
        padding-left: 10px;
        padding-right: 20px;
    }

    .navbar-collapse .custom--nice-select .nice-select::after {
        height: 6px;
        width: 6px;
        margin-top: -3px;
        right: 5px;
        border-color: #4e4e4e;
    }

    .navbar-collapse .custom--nice-select .nice-select .current {
        color: #4e4e4e;
    }

    .navbar-collapse .custom--nice-select .nice-select .list {
        width: 100%;
        max-height: 150px;
        background: #fff;
        border-radius: 3px;
    }

    .navbar-collapse .custom--nice-select .nice-select .list .option.selected,
    .navbar-collapse .custom--nice-select .nice-select .list .option:hover {
        color: #FFF !important;
        background: #0fb1ff !important;
    }

    .navbar-collapse .custom--nice-select .nice-select .option {
        padding-left: 5px;
        padding-right: 5px;
        color: #4e4e4e !important;

    }
}

@media (min-width: 992px) {

    .navbar .account .btn {
        border-radius: 0;
        padding: 25px 25px;
    }

    .nav-menu {
        padding-top: 0;
        padding-bottom: 0;
        margin: 0 -15px;
    }

    .nav-menu .nav-item {
        position: relative;
        padding: 0 15px;
    }

    .nav-menu .nav-item:hover .nav-link {
        color: hsl(var(--base)) !important;
    }

    .nav-menu .nav-item:hover .nav-link::before {
        width: 100%;
    }

    .nav-menu .nav-item:hover .nav-link .nav-item__icon {
        transform: rotate(180deg);
        transition: 0.2s;
    }

    .nav-menu .nav-item .nav-link {
        font-weight: 500;
        font-size: 1rem;
        color: #212121 !important;
        padding: 26px 0;
        position: relative;
        cursor: pointer;
    }

}

@media screen and (min-width: 992px) and (max-width: 991px) {
    .nav-menu .nav-item .nav-link .nav-item__icon {
        margin-right: 6px;
    }
}

@media (min-width: 992px) {
    .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: 0.3s;
        top: 100%;
        left: 0;
        padding: 0 !important;
        transform: scaleY(0);
        transform-origin: top center;
        transition: 0.3s;
        overflow: hidden;
        border-radius: 0;
        min-width: 190px;
    }

    .dropdown-menu__list {
        border-bottom: 1px solid hsl(var(--black)/0.08);
    }

    .dropdown-menu__list:last-child {
        border-bottom: 3px solid hsl(var(--base));
    }

    .dropdown-menu__link {
        padding: 7px 20px;
        font-weight: 500;
        font-size: 1rem;
        transition: 0.3s;
    }

    .dropdown-menu__link:focus,
    .dropdown-menu__link:hover {
        color: hsl(var(--white));
        background-color: hsl(var(--base));
    }
}

@media (min-width: 992px) {
    .nav-menu .nav-item:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        top: 100% !important;
        transform: scaleY(1);
    }
}


@media screen and (max-width: 991px) {
    .body-overlay.show {
        visibility: visible;
        opacity: 1;
    }

    .header.fixed-header .navbar .account .btn {
        padding: 0.5rem 1rem;
    }

    .nav-menu {
        margin-top: 20px;
    }

    .nav-menu .nav-item {
        text-align: left;
        display: block;
        position: relative;
        margin: 0;
    }

    .nav-menu .nav-item:hover .nav-link .nav-item__icon {
        transform: rotate(0deg) !important;
    }

    .nav-item:first-child {
        border-bottom: none;
    }

    .nav-item:last-child>a {
        border-bottom: 0;
    }

    .nav-item .nav-link {
        margin-bottom: 8px;
        padding: 10px 10px 10px 0 !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 !important;
        border-bottom: 1px solid #f2f2f2;
        color: #212121 !important;
        font-weight: 500;
    }

    .nav-item .nav-link::before {
        display: none;
    }

    .nav-item .nav-link.show[aria-expanded=true] {
        color: hsl(var(--base)) !important;
    }

    .nav-item .nav-link.show[aria-expanded=true] i {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        border-radius: 3px;
        -webkit-box-shadow: none;
        border-radius: 3px;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-radius: 2px;
        width: 100%;
        margin: 0px !important;
        padding: 0 !important;
        border: 0;
        background-color: inherit;
        overflow: hidden;
    }

    .dropdown-menu li:nth-last-child(1) {
        border-bottom: none;
    }

    .dropdown-menu li .dropdown-item {
        padding: 10px 0px;
        font-weight: 500;
        font-size: 1rem;
        color: hsl(var(--white));
        border-bottom: 1px solid hsl(var(--white)/0.2);
        margin-left: 20px;
        color: hsl(var(--white));
    }

    .dropdown-menu li .dropdown-item:hover,
    .dropdown-menu li .dropdown-item:focus {
        background-color: transparent;
    }
}

.navbar-toggler.header-button {
    border-color: transparent;
    color: hsl(var(--base));
    background: transparent !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    transition: 0.15s ease-in-out;
    width: auto;
    font-size: 30px;
}

.navbar-toggler.header-button:focus {
    box-shadow: none !important;
}

.navbar-toggler.header-button[aria-expanded=true] i::before {
    content: "\f00d";
}

.navbar-nav .nav-item .nav-link.active {
    color: hsl(var(--base)) !important;
}


/* ================================= Header Css End =========================== */
/* badge */


.badge--base {
    background-color: hsl(var(--base)/0.15);
    border: 1px solid hsl(var(--base));
    color: hsl(var(--base));
}

.badge--primary {
    background-color: hsl(var(--primary)/0.15);
    border: 1px solid hsl(var(--primary));
    color: hsl(var(--primary));
}

.badge--secondary {
    background-color: hsl(var(--secondary)/0.15);
    border: 1px solid hsl(var(--secondary));
    color: hsl(var(--secondary));
}

.badge--success {
    background-color: hsl(var(--success)/0.15);
    border: 1px solid hsl(var(--success));
    color: hsl(var(--success));
}

.badge--danger {
    background-color: hsl(var(--danger)/0.15);
    border: 1px solid hsl(var(--danger));
    color: hsl(var(--danger));
}

.badge--warning {
    background-color: hsl(var(--warning)/0.15);
    border: 1px solid hsl(var(--warning));
    color: hsl(var(--warning));
}

.badge--info {
    background-color: hsl(var(--info)/0.15);
    border: 1px solid hsl(var(--info));
    color: hsl(var(--info));
}

.badge--dark {
    background-color: hsl(var(--dark)/0.15);
    border: 1px solid hsl(var(--dark));
    color: hsl(var(--dark));
}

.badge--light {
    background-color: hsl(var(--light)/0.15);
    border: 1px solid hsl(var(--light));
    color: hsl(var(--light));
}

.badge {
    border-radius: 18px;
    padding: 2px 15px 3px;
    font-weight: 600;
}

.radious-5 {
    border-radius: 5px;
}

.custom--card .card-body {
    padding: 45px;
}

.t-link--primary:hover {
    color: hsl(var(--base)) !important;
}

.form--control {
    display: block;
    width: 100%;
    border: none;
    background-color: #fafafa !important;
}

textarea.form--control {
    min-height: 120px !important;
}

.form-control:focus {
    background-color: #fafafa;
    box-shadow: none !important;
}

.flex-shrink-0.icon {
    width: 45px;
    height: 45px;
    font-size: 25px;
    background-color: hsl(var(--base));
    border-radius: 50%;
    color: hsl(var(--white));
    display: flex;
    justify-content: center;
    align-items: center;
}

.ms-3.content {
    width: calc(100% - 45px);
}









.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    color: hsl(var(--white));
    background-color: hsl(var(--base));
    border: 1px solid hsl(var(--base));
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    transition: 0.5s;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    bottom: -50px;
    animation: scroll_top 5s linear infinite;
}

.scroll-top.show {
    visibility: visible;
    opacity: 1;
    bottom: 30px;
}

@keyframes scroll_top {

    0%,
    to {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }
}

.form--control[type='file']{
    padding: 0 12px !important;
    border: 1px solid transparent;
}

.input-group-text{
    border: 0 !important;
}